Your warranties manager
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

29 lines
544 B

  1. #ifndef GESTIONMAGASINSDIALOG_H
  2. #define GESTIONMAGASINSDIALOG_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class GestionMagasinsDialog;
  6. }
  7. class GestionMagasinsDialog : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit GestionMagasinsDialog(QWidget *parent = 0);
  12. ~GestionMagasinsDialog();
  13. public slots:
  14. void on_btnAjoutMagasin_clicked();
  15. void on_btnSupprMagasin_clicked();
  16. void on_listMagasins_currentRowChanged();
  17. void on_buttonBox_accepted();
  18. private:
  19. Ui::GestionMagasinsDialog *ui;
  20. };
  21. #endif // GESTIONMAGASINSDIALOG_H