File indexing completed on 2025-03-09 04:10:17
0001 # SPDX-License-Identifier: CC0-1.0 0002 0003 from PyQt5.QtWidgets import QComboBox 0004 0005 0006 class ColorDepthComboBox(QComboBox): 0007 0008 def __init__(self, uiColorSpace, parent=None): 0009 super(ColorDepthComboBox, self).__init__(parent) 0010 0011 self.uiColorSpace = uiColorSpace 0012 0013 self.currentTextChanged.connect(self.changedTextColorDepthComboBox) 0014 0015 def changedTextColorDepthComboBox(self, colorDepth): 0016 self.uiColorSpace.loadColorProfiles()