| Class implementing a thin wrapper around QListViewItem.     It makes sure that it is positioned after the previous sibling. 
        
            | Methods |  |  
        | __init__ paintCell
 
 |  
            |  | __init__ |  
        | 
__init__ (
        self,
        parent,
        text,
        after,
        bold=0,
        )
Constructor        Arguments
            parentparent Browser or BrowserNode            texttext to be displayed by this node (string or QString)            aftersibling this node is positioned after            boldflag indicating a highlighted font |  
            |  | paintCell |  
        | 
paintCell (
        self,
        p,
        cg,
        column,
        width,
        alignment,
        )
Overwritten class to set a different text color, if bold is true.        Arguments
            pthe painter (QPainter)            cgthe color group (QColorGroup)            columnthe column (int)            widthwidth of the cell (int)            alignmentalignment of the cell (int) |  |