summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/qcheckentry.h
Side-by-side diff
Diffstat (limited to 'noncore/apps/checkbook/qcheckentry.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/qcheckentry.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/noncore/apps/checkbook/qcheckentry.h b/noncore/apps/checkbook/qcheckentry.h
new file mode 100644
index 0000000..f361bbf
--- a/dev/null
+++ b/noncore/apps/checkbook/qcheckentry.h
@@ -0,0 +1,31 @@
+#include <qstring.h>
+#include <qcombobox.h>
+#include "qrestrictedline.h"
+#include <qcombobox.h>
+#include <qstringlist.h>
+#include <qlabel.h>
+#include <qmultilineedit.h>
+#include "qcheckentrybase.h"
+#include <qdialog.h>
+#include <qregexp.h>
+#include <qmessagebox.h>
+#include <qwidget.h>
+#include <qevent.h>
+#include <qdatetime.h>
+#include <qradiobutton.h>
+#include "config.h"
+
+class QCheckEntry : public QCheckEntryBase
+{
+ Q_OBJECT
+ public:
+ QCheckEntry();
+ static QStringList popupEntry(const QStringList &originaldata);
+ private slots:
+ void amountChanged(const QString &);
+ void transFeeChanged(const QString &);
+ void paymentClicked();
+ void depositClicked();
+ protected slots:
+ virtual void accept();
+};