Class implementing the search and replace dialog.
        
            | Methods |  | 
        
        | __init__ enableFindButtons
 handleFind
 handleFindNext
 handleReplace
 handleReplaceAll
 showFind
 showReplace
 
 | 
            |  | __init__ | 
        
        | 
__init__ (
        self,
        replace,
        vm,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            replaceflag indicating a replace dialog is called            vmreference to the viewmanager object            parentparent widget of this dialog (QWidget)            namename of this dialog (string or QString)            moadlflag indicating a modal dialog            flwindow flags | 
            |  | enableFindButtons | 
        
        | 
enableFindButtons ( self )
 Private slot to enable/disable the find buttons. | 
            |  | handleFind | 
        
        | 
handleFind ( self )
 Private slot to find the entered text in the displayed editor. | 
            |  | handleFindNext | 
        
        | 
handleFindNext ( self )
 Public slot to find the next occurance of text. | 
            |  | handleReplace | 
        
        | 
handleReplace ( self )
 Public slot to replace one occurance of text. | 
            |  | handleReplaceAll | 
        
        | 
handleReplaceAll ( self )
 Public slot to replace all occurances of text. | 
            |  | showFind | 
        
        | 
showFind ( self,  text='' )
 Public method to display this dialog in find mode.        Arguments
            texttext to be shown in the findtext edit | 
            |  | showReplace | 
        
        | 
showReplace ( self,  text='' )
 Public slot to display this dialog in replace mode.        Arguments
            texttext to be shown in the findtext edit |