@@ -844,6 +844,10 @@ class Config:
844
844
def IdentifyBuiltinColorSpace (srcConfig : Config , builtinConfig : Config , builtinColorSpaceName : str ) -> str : ...
845
845
@staticmethod
846
846
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 : ...
847
851
def addColorSpace (self , colorSpace : ColorSpace ) -> None : ...
848
852
def addDisplaySharedView (self , display : str , view : str ) -> None : ...
849
853
@overload
@@ -866,8 +870,10 @@ class Config:
866
870
def clearNamedTransforms (self ) -> None : ...
867
871
def clearProcessorCache (self ) -> None : ...
868
872
def clearSearchPaths (self ) -> None : ...
873
+ def clearSharedViews (self ) -> None : ...
869
874
def clearViewTransforms (self ) -> None : ...
870
875
def clearVirtualDisplay (self ) -> None : ...
876
+ def displayHasView (self , display : str , view : str ) -> bool : ...
871
877
def filepathOnlyMatchesDefaultRule (self , filePath : str ) -> bool : ...
872
878
def getActiveDisplays (self ) -> str : ...
873
879
def getActiveViews (self ) -> str : ...
@@ -977,6 +983,7 @@ class Config:
977
983
def getVirtualDisplayViews (self , display : ViewType ) -> Config .VirtualViewIterator : ...
978
984
def getWorkingDir (self ) -> str : ...
979
985
def hasRole (self , role : str ) -> bool : ...
986
+ def hasVirtualView (self , view : str ) -> bool : ...
980
987
def instantiateDisplayFromICCProfile (self , ICCProfileFilepath : str ) -> int : ...
981
988
def instantiateDisplayFromMonitorName (self , monitorName : str ) -> int : ...
982
989
def isArchivable (self ) -> bool : ...
@@ -1017,6 +1024,8 @@ class Config:
1017
1024
def setWorkingDir (self , dirName : str ) -> None : ...
1018
1025
def upgradeToLatestVersion (self ) -> None : ...
1019
1026
def validate (self ) -> None : ...
1027
+ def viewIsShared (self , display : str , view : str ) -> bool : ...
1028
+ def virtualViewIsShared (self , view : str ) -> bool : ...
1020
1029
def __deepcopy__ (self , memo : dict ) -> Config : ...
1021
1030
1022
1031
class Context :
0 commit comments