1
2class DisplayTransform:
3    """
4    Used to create transforms for displays.
5    """
6    def __init__(self):
7        pass
8
9    def getInputColorSpaceName(self):
10        """
11        getInputColorSpaceName()
12
13        Returns the name of the input ColorSpace of
14        :py:class:`PyOpenColorIO.DisplayTransform`.
15
16        :return: name of input ColorSpace
17        :rtype: string
18        """
19        pass
20
21    def setInputColorSpaceName(self, name):
22        """
23        setInputColorSpaceName(name)
24
25        Sets the name of the input ColorSpace of
26        :py:class:`PyOpenColorIO.DisplayTransform`.
27
28        :param name: name of input ColorSpace
29        :type name: string
30        """
31        pass
32
33    def getLinearCC(self):
34        """
35        getLinearCC()
36
37        Returns the linear CC transform of
38        :py:class:`PyOpenColorIO.DisplayTransform`.
39
40        :return: linear CC transform
41        :rtype: object
42        """
43        pass
44
45    def setLinearCC(self, transform):
46        """
47        setLinearCC(pyCC)
48
49        Sets the linear CC transform of
50        :py:class:`PyOpenColorIO.DisplayTransform`.
51
52        :param pyCC: linear CC
53        :type pyCC: object
54        """
55        pass
56
57    def getColorTimingCC(self):
58        """
59        getColorTimingCC()
60
61        Returns the color timing CC transform of
62        :py:class:`PyOpenColorIO.DisplayTransform`.
63
64        :return: color timing CC transform
65        :rtype: object
66        """
67        pass
68
69    def setColorTimingCC(self, transform):
70        """
71        setColorTimingCC(pyCC)
72
73        Sets the color timing CC transform of
74        :py:class:`PyOpenColorIO.DisplayTransform`.
75
76        :param pyCC: color timing CC
77        :type pyCC: object
78        """
79        pass
80
81    def getChannelView(self):
82        """
83        getChannelView()
84
85        Returns the channel view of
86        :py:class:`PyOpenColorIO.DisplayTransform`.
87
88        :return: channel view
89        :rtype: object
90        """
91        pass
92
93    def setChannelView(self, transform):
94        """
95        setChannelView(pyCC)
96
97        Sets the channel view transform of
98        :py:class:`PyOpenColorIO.DisplayTransform`.
99
100        :param pyCC: channel view transform
101        :type pyCC: object
102        """
103        pass
104
105    def getDisplay(self):
106        """
107        getDisplay()
108
109        Returns the display of
110        :py:class:`PyOpenColorIO.DisplayTransform`.
111
112        :return: display
113        :rtype: string
114        """
115        pass
116
117    def setDisplay(self, displayName):
118        """
119        setDisplay(str)
120
121        Sets the display of
122        :py:class:`PyOpenColorIO.DisplayTransform`.
123
124        :param str: display
125        :type str: string
126        """
127        pass
128
129    def getView(self):
130        """
131        getView()
132
133        Returns the view of
134        :py:class:`PyOpenColorIO.DisplayTransform`.
135
136        :return: view
137        :rtype: string
138        """
139        pass
140
141    def setView(self, viewName):
142        """
143        setView(str)
144
145        Sets the view of
146        :py:class:`PyOpenColorIO.DisplayTransform`.
147
148        :param str: view
149        :type str: string
150        """
151        pass
152
153    def getDisplayCC(self):
154        """
155        getDisplayCC()
156
157        Returns the display CC transform of
158        :py:class:`PyOpenColorIO.DisplayTransform`.
159
160        :return: display CC
161        :rtype: object
162        """
163        pass
164
165    def setDisplayCC(self, transform):
166        """
167        setDisplayCC(pyCC)
168
169        Sets the display CC transform of
170        :py:class:`PyOpenColorIO.DisplayTransform`.
171
172        :param pyCC: display CC
173        :type pyCC: object
174        """
175        pass
176
177    def getLooksOverride(self):
178        """
179        getLooksOverride()
180
181        Returns the looks in :py:class:`PyOpenColorIO.DisplayTransform` that's
182        overriding :py:class:`PyOpenColorIO.Config`'s.
183
184        :return: looks override
185        :rtype: string
186        """
187        pass
188
189    def setLooksOverride(self, looksStr):
190        """
191        setLooksOverride(str)
192
193        Sets the looks override of :py:class:`PyOpenColorIO.DisplayTransform`.
194
195        :param str: looks override
196        :type str: string
197        """
198        pass
199
200    def getLooksOverrideEnabled(self):
201        """
202        getLooksOverrideEnabled()
203
204        Returns whether the looks override of
205        :py:class:`PyOpenColorIO.DisplayTransform` is enabled.
206
207        :return: looks override enabling
208        :rtype: bool
209        """
210        pass
211
212    def setLooksOverrideEnabled(self, enabled):
213        """
214        setLooksOverrideEnabled(enabled)
215
216        Sets the looks override enabling of
217        :py:class:`PyOpenColorIO.DisplayTransform`.
218
219        :param enabled: looks override enabling
220        :type enabled: object
221        """
222        pass
223