Advertisement
Guest User

Untitled

a guest
May 26th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #ifndef GOTOCELLDIALOG_H
  2. #define GOTOCELLDIALOG_H
  3. #include <QDialog>
  4. #include <QLineEdit>
  5.  
  6.  
  7.  
  8. class GoToCellDialog : public QDialog
  9. {
  10. Q_OBJECT
  11. private:
  12. QLineEdit * lineEdit;
  13. QPushButton * okButton ;
  14. QPushButton * cancelButton ;
  15.  
  16. public:
  17. GoToCellDialog(QWidget *parent = 0);
  18.  
  19. private slots:
  20. void on_lineEdit_textChanged();
  21.  
  22.  
  23. };
  24.  
  25. #endif // GOTOCELLDIALOG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement