Group.h 522 B

1234567891011121314151617181920212223242526
  1. #ifndef GROUP_H
  2. #define GROUP_H
  3. #include <QWidget>
  4. namespace Ui {
  5. class Group;
  6. }
  7. class Group : public QWidget
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit Group(int Id, const QString& imagePath1, const QString& imagePath2, const QStringList& textList, QWidget* parent);
  12. ~Group();
  13. void initForm();
  14. bool eventFilter(QObject *obj, QEvent *event);
  15. void saveGroupSettings(int Id, const QString& imagePath1, const QString& imagePath2, const QStringList& textList);
  16. private:
  17. Ui::Group *ui;
  18. };
  19. #endif // GROUP_H