| Module implementing the color dialog wizard dialog.    It displays a dialog for entering the parameters
    for the QColorDialog code generator. 
        
            | Methods |  |  
        | __init__ getCode
 handleColorVar
 handleRGBVar
 testDlg
 
 |  
            |  | __init__ |  
        | 
__init__ ( self,  parent=None )
 Constructor        Arguments
            parentparent widget (QWidget) |  
            |  | getCode |  
        | 
getCode (
        self,
        indLevel,
        indString,
        )
Public method to get the source code.        Arguments
            indLevelindentation level (int)            indStringstring used for indentation (space or tab) (string)         Returns            generated code (string) |  
            |  | handleColorVar |  
        | 
handleColorVar ( self,  text )
 Private slot to handle the textChanged signal of eColor.        Arguments
            textthe new text (QString) |  
            |  | handleRGBVar |  
        | 
handleRGBVar ( self,  text )
 Private slot to handle the textChanged signal of eRGB.        Arguments
            textthe new text (QString) |  
            |  | testDlg |  
        | 
testDlg ( self )
 Private method to test the selected options. |  |