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.
 
 
 

35 lines
666 B

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