the code that am sharing is just working for the add button only would you help me in the delete and edit button....thank s so much


Code:
from PyQt4 import QtGui , QtCore
class Example ( QtGui.QWidget ):
	row = 0
	def __init__ ( self ):
		super ( Example , self ). __init__ ()
		self.setGeometry (300 , 300 , 350 , 250)
		self.setWindowTitle ( " names " )
		#self.menubar()
...