/****************************************************************************
** ui.h extension file, included from the uic-generated form implementation.
**
** If you wish to add, delete or rename functions or slots use
** Qt Designer which will update this file, preserving your code. Create an
** init() function in place of a constructor, and a destroy() function in
** place of a destructor.
*****************************************************************************/


void FormGestion::gestion_eleves()
{
    FormGestionEleves * gestElv=new FormGestionEleves(this,"FormGestionEleves",TRUE,Qt::WStyle_Dialog);
    gestElv->show();
}


void FormGestion::ajout_devoir()
{
    FormGestionDevoirs * gestDev=new FormGestionDevoirs(this,"FormGestionDevoirs",TRUE,Qt::WStyle_Dialog);
    gestDev->show();
}



void FormGestion::notes_devoir()
{
    FormDevoirs * dev=new FormDevoirs(this,"FormDevoirs",TRUE,Qt::WStyle_Dialog);
    dev->show();
}


void FormGestion::notes_eleve()
{
    FormEleves * elv=new FormEleves(this,"FormEleves",TRUE,Qt::WStyle_Dialog);
    elv->show();
}
