moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / libkdeedu / extdate / testwidget.h
blobef69f8b6a282bae37e32d5dd578cf27cc82b97b1
1 /***************************************************************************
2 testwidget.cpp - description
3 -------------------
4 begin : Sun Apr 11 2004
5 copyright : (C) 2004 by Jason Harris
6 email : kstars@30doradus.org
7 ***************************************************************************/
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 ***************************************************************************/
18 #ifndef TESTWIDGET_H
19 #define TESTWIDGET_H
21 #include <kmainwindow.h>
23 class KDatePicker;
24 class KLineEdit;
25 class KDateWidget;
26 class ExtDatePicker;
27 class ExtDateWidget;
28 class QGridLayout;
29 class QDate;
30 class ExtDate;
32 class TestWidget : public KMainWindow {
33 Q_OBJECT
34 public:
35 TestWidget( QWidget *parent, const char *name );
36 ~TestWidget() {}
38 public slots:
39 void slotKDateChanged(QDate);
40 void slotExtDateChanged(const ExtDate&);
42 private:
43 QGridLayout *glay;
44 KDatePicker *kdp;
45 ExtDatePicker *edp;
46 ExtDateWidget *edw;
47 KDateWidget *kdw;
48 KLineEdit *kdpEdit, *edpEdit;
51 #endif //ifndef TESTWIDGET_H