summaryrefslogtreecommitdiff
path: root/noncore/apps/checkbook/qrestrictedline.h
authorharlekin <harlekin>2002-07-05 13:00:41 (UTC)
committer harlekin <harlekin>2002-07-05 13:00:41 (UTC)
commit60238d4e9781ad18475a3b45bceaad1d30ea1b8b (patch) (side-by-side diff)
treef4aac0b3daab54d8cb004879a91c51fd1f619a55 /noncore/apps/checkbook/qrestrictedline.h
parenta332e5e111b0c9ef8eb0836876a4ff386c660514 (diff)
downloadopie-60238d4e9781ad18475a3b45bceaad1d30ea1b8b.zip
opie-60238d4e9781ad18475a3b45bceaad1d30ea1b8b.tar.gz
opie-60238d4e9781ad18475a3b45bceaad1d30ea1b8b.tar.bz2
spendings tracking app by Nick Betcher (who quit qte development .-( )
Diffstat (limited to 'noncore/apps/checkbook/qrestrictedline.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/checkbook/qrestrictedline.h96
1 files changed, 96 insertions, 0 deletions
diff --git a/noncore/apps/checkbook/qrestrictedline.h b/noncore/apps/checkbook/qrestrictedline.h
new file mode 100644
index 0000000..7e41cd9
--- a/dev/null
+++ b/noncore/apps/checkbook/qrestrictedline.h
@@ -0,0 +1,96 @@
+/*
+ *
+ * Definition of QRestrictedLine
+ *
+ * Copyright (C) 1997 Michael Wiedmann, <mw@miwie.in-berlin.de>
+ *
+ * Edited 2001 by Nick Betcher <nbetcher@usinternet.com> to work
+ * with Qt-only. Changed class name from QRestrictedLine to
+ * QRestrictedLine.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the Free
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ */
+
+#ifndef QRESTRICTEDLINE_H
+#define QRESTRICTEDLINE_H
+
+#include <qlineedit.h>
+
+/**
+ * The QRestrictedLine widget is a variant of @ref QLineEdit which
+ * accepts only a restricted set of characters as input.
+ * All other characters will be discarded and the signal @ref #invalidChar()
+ * will be emitted for each of them.
+ *
+ * Valid characters can be passed as a QString to the constructor
+ * or set afterwards via @ref #setValidChars().
+ * The default key bindings of @ref QLineEdit are still in effect.
+ *
+ * @short A line editor for restricted character sets.
+ * @author Michael Wiedmann <mw@miwie.in-berlin.de>
+ * @version 0.0.1
+ */
+class QRestrictedLine : public QLineEdit
+{
+ Q_OBJECT
+ Q_PROPERTY( QString validChars READ validChars WRITE setValidChars )
+
+public:
+
+ /**
+ * Constructor: This contructor takes three - optional - arguments.
+ * The first two parameters are simply passed on to @ref QLineEdit.
+ * @param parent pointer to the parent widget
+ * @param name pointer to the name of this widget
+ * @param valid pointer to set of valid characters
+ */
+ QRestrictedLine( QWidget *parent=0, const char *name=0,
+ const QString& valid = QString::null);
+
+ /**
+ * Destructs the restricted line editor.
+ */
+ ~QRestrictedLine();
+
+ /**
+ * All characters in the string valid are treated as
+ * acceptable characters.
+ */
+ void setValidChars(const QString& valid);
+ /**
+ * @return the string of acceptable characters.
+ */
+ QString validChars() const;
+
+signals:
+
+ /**
+ * Emitted when an invalid character was typed.
+ */
+ void invalidChar(int);
+
+protected:
+ /**
+ * @reimplemented
+ */
+ void keyPressEvent( QKeyEvent *e );
+
+private:
+ /// QString of valid characters for this line
+ QString qsValidChars;
+};
+
+#endif // QRESTRICTEDLINE_H