@@ -844,6 +844,10 @@ class Config:
844844 def IdentifyBuiltinColorSpace (srcConfig : Config , builtinConfig : Config , builtinColorSpaceName : str ) -> str : ...
845845 @staticmethod
846846 def IdentifyInterchangeSpace (srcConfig : Config , srcColorSpaceName : str , builtinConfig : Config , builtinColorSpaceName : str ) -> tuple [str , str ]: ...
847+ @staticmethod
848+ def ViewsAreEqual (first : Config , second : Config , dispName : str , viewName : str ) -> bool : ...
849+ @staticmethod
850+ def VirtualViewsAreEqual (first : Config , second : Config , viewName : str ) -> bool : ...
847851 def addColorSpace (self , colorSpace : ColorSpace ) -> None : ...
848852 def addDisplaySharedView (self , display : str , view : str ) -> None : ...
849853 @overload
@@ -866,8 +870,10 @@ class Config:
866870 def clearNamedTransforms (self ) -> None : ...
867871 def clearProcessorCache (self ) -> None : ...
868872 def clearSearchPaths (self ) -> None : ...
873+ def clearSharedViews (self ) -> None : ...
869874 def clearViewTransforms (self ) -> None : ...
870875 def clearVirtualDisplay (self ) -> None : ...
876+ def displayHasView (self , display : str , view : str ) -> bool : ...
871877 def filepathOnlyMatchesDefaultRule (self , filePath : str ) -> bool : ...
872878 def getActiveDisplays (self ) -> str : ...
873879 def getActiveViews (self ) -> str : ...
@@ -977,6 +983,7 @@ class Config:
977983 def getVirtualDisplayViews (self , display : ViewType ) -> Config .VirtualViewIterator : ...
978984 def getWorkingDir (self ) -> str : ...
979985 def hasRole (self , role : str ) -> bool : ...
986+ def hasVirtualView (self , view : str ) -> bool : ...
980987 def instantiateDisplayFromICCProfile (self , ICCProfileFilepath : str ) -> int : ...
981988 def instantiateDisplayFromMonitorName (self , monitorName : str ) -> int : ...
982989 def isArchivable (self ) -> bool : ...
@@ -1017,6 +1024,8 @@ class Config:
10171024 def setWorkingDir (self , dirName : str ) -> None : ...
10181025 def upgradeToLatestVersion (self ) -> None : ...
10191026 def validate (self ) -> None : ...
1027+ def viewIsShared (self , display : str , view : str ) -> bool : ...
1028+ def virtualViewIsShared (self , view : str ) -> bool : ...
10201029 def __deepcopy__ (self , memo : dict ) -> Config : ...
10211030
10221031class Context :
0 commit comments