Qt 5.10 Book Examples
InputDialog.h
Go to the documentation of this file.
1 // ======================================================================
2 // InputDialog.h
3 // ======================================================================
4 // This file is a part of the book
5 // "Qt 5.10 Professional programming with C++"
6 // http://qt-book.com
7 // ======================================================================
8 // Copyright (c) 2017 by Max Schlee
9 // ======================================================================
10 
11 #pragma once
12 
13 #include <QDialog>
14 
15 class QLineEdit;
16 // ======================================================================
17 class InputDialog : public QDialog {
18  Q_OBJECT
19 private:
20  QLineEdit* m_ptxtFirstName;
21  QLineEdit* m_ptxtLastName;
22 
23 public:
24  InputDialog(QWidget* pwgt = 0);
25 
26  QString firstName() const;
27  QString lastName () const;
28 };
QString firstName() const
Definition: InputDialog.cpp:45
QString lastName() const
Definition: InputDialog.cpp:51
InputDialog(QWidget *pwgt=0)
Definition: InputDialog.cpp:15