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.

widget.h 486B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef WIDGET_H
  2. #define WIDGET_H
  3. #include <QWidget>
  4. #include "epimafia.h"
  5. namespace Ui {
  6. class Widget;
  7. }
  8. class Widget : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit Widget(QWidget *parent = 0);
  13. ~Widget();
  14. public slots:
  15. void load();
  16. void removeCurrent();
  17. void addUser();
  18. void saveCurrent();
  19. void setUser(EpiUser user);
  20. private slots:
  21. void on_comboLogin_currentIndexChanged(int index);
  22. private:
  23. Ui::Widget *ui;
  24. };
  25. #endif // WIDGET_H