| Class implementing the project browser part of the eric3 UI.    It generates a widget with four tabs. The individual tabs contain
    the project sources browser, the project forms browser,
    the project translations browser and a browser for stuff
    that doesn't fit these categories.     Signals
        editorSaved(string)emitted after an editor has been saved 
        
            | Methods |  |  
        | __init__ handleEditorSaved
 handleProjectOpened
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        project,
        qtdir,
        parent=None,
        )
Constructor        Arguments
            projectreference to the project object            qtdirQt installation directory (string)            parentparent widget (QWidget) |  
            |  | handleEditorSaved |  
        | 
handleEditorSaved ( self,  fn )
 Public slot to handle the editorSaved signal.        It simply reemits it. |  
            |  | handleProjectOpened |  
        | 
handleProjectOpened ( self )
 Private slot to handle the projectOpened signal. |  |