Advertisement
Guest User

Untitled

a guest
Mar 10th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef FIELD_H
  2. #define FIELD_H
  3. #include <QWidget>
  4. #include <QFileDialog>
  5. #include <QMessageBox>
  6. class Field : public QWidget
  7. {
  8.     Q_OBJECT
  9. public:
  10.     explicit Field(const QString &title, QWidget *parent = 0);
  11. signals:
  12.     void fieldChanged();
  13. protected:
  14.     QString m_title;
  15. public slots:
  16. protected slots:
  17.     void onFieldChanged();
  18. };
  19. #endif // FIELD_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement