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 692B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef WIDGET_H
  2. #define WIDGET_H
  3. #include <QWidget>
  4. #include <QProcess>
  5. #include <QDir>
  6. #include "netsoul.h"
  7. namespace Ui {
  8. class Widget;
  9. }
  10. class Widget : public QWidget
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit Widget(QWidget *parent = 0);
  15. ~Widget();
  16. private slots:
  17. void on_lineLogin_returnPressed();
  18. void on_lineIp_returnPressed();
  19. void ipList(NetSoul::Users users);
  20. void loginList(NetSoul::Users users);
  21. void ipStateChanged(NetSoul::State state);
  22. void loginStateChanged(NetSoul::State state);
  23. void setStatus(NetSoul::State state);
  24. void on_btnSearchLogin_clicked();
  25. private:
  26. Ui::Widget *ui;
  27. NetSoul* m_netsoul;
  28. };
  29. #endif // WIDGET_H