Delete professional history item done
[biacv.git] / biacv_mainwindow.py
index 5b27e6d..e58aa37 100644 (file)
@@ -7,6 +7,168 @@ class Biacv_mainwindow (PyQt4.QtGui.QMainWindow, bui.Ui_biacv_mainwindow):
        def __init__ (self):
                PyQt4.QtGui.QMainWindow.__init__ (self)
                self.setupUi (self)
+               self.currentfile = None
 
+       # delete professional history button is clicked
+       def on_delete_profession (self):
+               # get the selected items
+               selitems = self.professionlist.selectedItems ()
+               if selitems == []:
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot delete", "No item selected.")
+                       return
+               # confirm deletion
+               ans = PyQt4.QtGui.QMessageBox.question (self, "Confirm",
+                       "Are you sure you wish to delete the selected item?",
+                       PyQt4.QtGui.QMessageBox.Yes, PyQt4.QtGui.QMessageBox.No)
+               # if confirmed
+               if ans == PyQt4.QtGui.QMessageBox.Yes:
+                       for item in selitems:
+                               self.professionlist.takeTopLevelItem (self.professionlist.indexOfTopLevelItem (item))
+                       self.reset_profession_fields ()
+
+       # add professional history button is clicked
+       def on_add_profession (self):
+               if self.designation.text () == "":
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot add", "A required field is missing.")
+                       return
+
+               if self.currentemployment.isChecked ():
+                       leavedatestr = "current"
+               else:
+                       leavedatestr = self.leavedate.date ().toString ("dd MMM, yyyy")
+
+               professionitem = PyQt4.QtGui.QTreeWidgetItem (
+                       [
+                               self.designation.text (),
+                               self.joindate.date ().toString ("dd MMM, yyyy"),
+                               leavedatestr,
+                               self.organization.text (),
+                               self.additionalinfo.text ()
+                       ]
+                       )
+
+               self.professionlist.addTopLevelItem (professionitem)
+
+               self.reset_profession_fields ()
+
+       # when selection of profession list is changed
+       def on_select_profession (self):
+               self.set_profession_fields ()
+
+       # set the profession fields from the selected item in profession list
+       def set_profession_fields (self):
+               selitems = self.professionlist.selectedItems ()
+               if selitems == []:
+                       return
+               selitem = selitems[0]
+               self.designation.setText (selitem.text (0))
+               self.joindate.setDate (PyQt4.QtCore.QDate.fromString (selitem.text(1), "dd MMM, yyyy"))
+               if selitem.text (2) == "current":
+                       self.leavedate.setEnabled (False)
+                       self.currentemployment.setChecked (True)
+               else:
+                       self.leavedate.setDate (PyQt4.QtCore.QDate.fromString (selitem.text (2), "dd MMM, yyyy"))
+                       self.leavedate.setEnabled (True)
+                       self.currentemployment.setChecked (False)
+
+               self.organization.setText (selitem.text (3))
+               self.additionalinfo.setText (selitem.text (4))
+
+       def reset_profession_fields (self):
+               self.designation.setText ("")
+               self.joindate.setDate (PyQt4.QtCore.QDate (2000, 1, 1))
+               self.leavedate.setDate (PyQt4.QtCore.QDate (2003, 1, 1))
+               self.currentemployment.setChecked (False)
+               self.organization.setText ("")
+               self.additionalinfo.setText ("")
+
+       # current employment check box is changed
+       def on_change_currentemployment (self, val):
+               if val == True:
+                       self.leavedate.setEnabled (False)
+               else:
+                       self.leavedate.setEnabled (True)
+
+       # delete educational qualification
+       def on_delete_education (self):
+               # get the selected items in the education list
+               selitems = self.educationlist.selectedItems ()
+               # if no items are selected
+               if selitems == []:
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot delete", "No items selected.")
+               # delete the items after confirmation
+               else:
+                       ans = PyQt4.QtGui.QMessageBox.question (self, "Confirm",
+                               "Are you sure you wish to delete selected item?",
+                               PyQt4.QtGui.QMessageBox.Yes, PyQt4.QtGui.QMessageBox.No)
+                       if ans == PyQt4.QtGui.QMessageBox.Yes:
+                               # remove the item selected
+                               for item in selitems:
+                                       self.educationlist.takeTopLevelItem (self.educationlist.indexOfTopLevelItem (item))
+                               self.reset_education_fields ()
+
+       # selection is changed
+       def on_select_education (self):
+               self.set_education_fields ()
+
+       # update educational qualification button
+       def on_update_education (self):
+               selitems = self.educationlist.selectedItems ()
+               # if no item is selected
+               if selitems == []:
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot update", "No item selected")
+                       return
+               # if the qualification title is not set
+               if self.degree_name.text () == "":
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot update", "A required field is missing.")
+                       return
+               selitem = selitems[0]
+
+               selitem.setText (0, self.degree_name.text ())
+               selitem.setText (1, self.yearofpassing.date ().toString ("MMM, yyyy"))
+               selitem.setText (2, self.institution.text ())
+               selitem.setText (3, self.university.text ())
+               selitem.setText (4, self.grade.text ())
+               selitem.setText (5, str (self.percentage.value ()))
+
+       # add educational qualification button
        def on_add_education (self):
-               print "Education"
\ No newline at end of file
+               # check if the qualification title is set
+               if self.degree_name.text () == "":
+                       PyQt4.QtGui.QMessageBox.critical (self, "Cannot add", "A required fields is missing.")
+                       return
+               educationitem = PyQt4.QtGui.QTreeWidgetItem ([
+                       self.degree_name.text (),
+                       self.yearofpassing.date ().toString ("MMM, yyyy"),
+                       self.institution.text (),
+                       self.university.text (),
+                       self.grade.text (),
+                       str (self.percentage.value ())
+                       ])
+               self.educationlist.addTopLevelItem (educationitem)
+               # clear the fields
+               self.reset_education_fields ()
+
+       # set fields in the education tab from current selected item
+       def set_education_fields (self):
+               selitems = self.educationlist.selectedItems ()
+               if selitems == []:
+                       return
+               selitem = selitems[0]
+               # set the fields to the data in the selected item in the list
+               self.degree_name.setText (selitem.text (0))
+               self.yearofpassing.setDate (PyQt4.QtCore.QDate.fromString (selitem.text(1), "MMM, yyyy"))
+               self.institution.setText (selitem.text (2))
+               self.university.setText (selitem.text (3))
+               self.grade.setText (selitem.text(4))
+               self.percentage.setValue (self.percentage.valueFromText (selitem.text(5)))
+
+       # reset fields in the education tab
+       def reset_education_fields (self):
+               self.degree_name.setText ("")
+               self.yearofpassing.setDate (PyQt4.QtCore.QDate (1988, 1, 1))
+               self.institution.setText ("")
+               self.university.setText ("")
+               self.grade.setText ("")
+               self.percentage.setValue (50.0)
+