kwave  18.07.70
SelectDateDialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  SelectDateDialog.h - dialog for selecting a date
3  -------------------
4  begin : Tue Jul 30 2002
5  copyright : (C) 2002 by Thomas Eschenbacher
6  email : Thomas.Eschenbacher@gmx.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef SELECT_DATE_DIALOG_H
19 #define SELECT_DATE_DIALOG_H
20 
21 #include "config.h"
22 
23 #include <QDateTime>
24 #include <QObject>
25 
26 #include "ui_SelectDateDlg.h"
27 
28 class QWidget;
29 
30 namespace Kwave
31 {
32 
33  class SelectDateDialog: public QDialog,
34  public Ui::SelectDateDlg
35  {
36  Q_OBJECT
37  public:
39  SelectDateDialog(QWidget *parent, QDate &date);
40 
42  virtual ~SelectDateDialog() Q_DECL_OVERRIDE;
43 
45  virtual QDate date();
46 
47  public slots:
48 
50  virtual void accept() Q_DECL_OVERRIDE;
51 
52  private:
53 
55  QDate m_date;
56 
57  };
58 }
59 
60 #endif /* SELECT_DATE_DIALOG_H */
61 
62 //***************************************************************************
63 //***************************************************************************
Definition: App.h:33
virtual ~SelectDateDialog() Q_DECL_OVERRIDE
SelectDateDialog(QWidget *parent, QDate &date)
virtual void accept() Q_DECL_OVERRIDE