| Module implementing the search dialog for the helpviewer. 
        
            | Methods |  |  
        | __init__ enableFindButtons
 handleFind
 handleFindNext
 showFind
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        browser,
        parent=None,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            browsertext browser to search in (QTextBrowser)            parentparent widget of this dialog (QWidget)            namename of this dialog (string or QString)            modalflag indicating a modal dialog (boolean)            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 page. |  
            |  | handleFindNext |  
        | 
handleFindNext ( self )
 Public slot to find the next occurance of text. |  
            |  | showFind |  
        | 
showFind ( self )
 Public method to display this dialog. |  |