Your warranties manager
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

mainwindow.h 1.0 KiB

10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
10 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QLineEdit>
  5. #include <QList>
  6. #include <QNetworkReply>
  7. #include "produititem.h"
  8. namespace Ui {
  9. class MainWindow;
  10. }
  11. class MainWindow : public QMainWindow
  12. {
  13. Q_OBJECT
  14. public:
  15. explicit MainWindow(QWidget *parent = 0);
  16. Ui::MainWindow *getUI();
  17. ~MainWindow();
  18. public slots:
  19. void dlVersionFinished(QNetworkReply* reply);
  20. void dlNewVersionBtnClicked();
  21. void searchProduit(QString search);
  22. void on_actionNouveauProduit_triggered();
  23. void on_actionSupprimerProduit_triggered(bool dontAskConfirm = true);
  24. void on_actionGererMagasins_triggered();
  25. void magasinDeleted(int indexMagasin);
  26. void on_actionAPropos_triggered();
  27. void on_actionAide_triggered();
  28. void on_actionReportBug_triggered();
  29. void updateStatusMessage();
  30. void deleteAsked();
  31. private:
  32. Ui::MainWindow *ui;
  33. QListWidgetItem *ajouterProduit(ProduitItem *produit);
  34. QLineEdit *searchBox;
  35. QString version;
  36. };
  37. #endif // MAINWINDOW_H