This dialog is used to edit and delete individual bookmarks.
    They can be rearranged and their contents can be edited.
        
            | Methods |  | 
        
        | __init__ accept
 handleDelete
 moveDown
 moveUp
 populateBMListView
 show
 
 | 
            |  | __init__ | 
        
        | 
__init__ (
        self,
        parent,
        name=None,
        modal=0,
        fl=0,
        )
Constructor        Arguments
            parentthe parent widget of this dialog (QWidget)
                This is usually the helpviewer main window.            namethe name of this dialog (string or QString)            modalflag indicating a modal dialog (boolean)            flwindow flags for this dialog | 
            |  | accept | 
        
        | 
accept ( self )
 Private slot called if the Ok button is pressed.        It updates the bookmarks list and writes it to
        the bookmarks file. | 
            |  | handleDelete | 
        
        | 
handleDelete ( self )
 Private slot called to delete a listview item. | 
            |  | moveDown | 
        
        | 
moveDown ( self )
 Private slot called to move the selected item down in the list. | 
            |  | moveUp | 
        
        | 
moveUp ( self )
 Private slot called to move the selected item up in the list. | 
            |  | populateBMListView | 
        
        | 
populateBMListView ( self )
 Private function to set up the contents of the listview. | 
            |  | show | 
        
        | 
show ( self )
 Public slot called to display this dialog. |